home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue35 / eval_dan / EVAL_DAN.ZIP / mathtest.dfm / mathtest.txt
Encoding:
Text File  |  1997-12-30  |  3.2 KB  |  167 lines

  1. object Form1: TForm1
  2.   Left = 272
  3.   Top = 182
  4.   Width = 668
  5.   Height = 338
  6.   Caption = 'Evaluator Tester'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   OnCreate = FormCreate
  12.   OnDestroy = FormDestroy
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object LBL_Value: TLabel
  16.     Left = 136
  17.     Top = 40
  18.     Width = 193
  19.     Height = 13
  20.     AutoSize = False
  21.   end
  22.   object Label3: TLabel
  23.     Left = 136
  24.     Top = 16
  25.     Width = 193
  26.     Height = 13
  27.     Alignment = taCenter
  28.     AutoSize = False
  29.     Caption = 'Expression'
  30.   end
  31.   object EDT_Expression: TEdit
  32.     Left = 136
  33.     Top = 56
  34.     Width = 193
  35.     Height = 21
  36.     TabOrder = 0
  37.   end
  38.   object TreeView: TTreeView
  39.     Left = 336
  40.     Top = 0
  41.     Width = 321
  42.     Height = 305
  43.     ShowButtons = False
  44.     ReadOnly = True
  45.     Indent = 19
  46.     ParentColor = False
  47.     TabOrder = 2
  48.   end
  49.   object BTN_Evaluate: TButton
  50.     Left = 24
  51.     Top = 32
  52.     Width = 105
  53.     Height = 25
  54.     Caption = 'Evaluate'
  55.     Enabled = False
  56.     TabOrder = 3
  57.     OnClick = BTN_EvaluateClick
  58.   end
  59.   object BTN_MakeTree: TButton
  60.     Left = 24
  61.     Top = 56
  62.     Width = 105
  63.     Height = 25
  64.     Caption = 'Make Tree'
  65.     TabOrder = 1
  66.     OnClick = BTN_MakeTreeClick
  67.   end
  68.   object Notebook: TTabbedNotebook
  69.     Left = 0
  70.     Top = 88
  71.     Width = 329
  72.     Height = 217
  73.     TabFont.Color = clBtnText
  74.     TabFont.Height = -11
  75.     TabFont.Name = 'MS Sans Serif'
  76.     TabFont.Style = []
  77.     TabOrder = 4
  78.     object TTabPage
  79.       Left = 4
  80.       Top = 24
  81.       Caption = 'Tokens'
  82.       object MEMO_Tokens: TMemo
  83.         Left = 8
  84.         Top = 4
  85.         Width = 305
  86.         Height = 181
  87.         ReadOnly = True
  88.         ScrollBars = ssVertical
  89.         TabOrder = 0
  90.       end
  91.     end
  92.     object TTabPage
  93.       Left = 4
  94.       Top = 24
  95.       Caption = 'Variables'
  96.       object Label1: TLabel
  97.         Left = 240
  98.         Top = 8
  99.         Width = 31
  100.         Height = 13
  101.         Caption = 'Name:'
  102.       end
  103.       object Label2: TLabel
  104.         Left = 240
  105.         Top = 48
  106.         Width = 30
  107.         Height = 13
  108.         Caption = 'Value:'
  109.       end
  110.       object LB_Vars: TListBox
  111.         Left = 8
  112.         Top = 8
  113.         Width = 225
  114.         Height = 177
  115.         Columns = 1
  116.         ExtendedSelect = False
  117.         ItemHeight = 13
  118.         TabOrder = 0
  119.       end
  120.       object EDT_VarName: TEdit
  121.         Left = 240
  122.         Top = 24
  123.         Width = 73
  124.         Height = 21
  125.         AutoSize = False
  126.         TabOrder = 1
  127.       end
  128.       object EDT_VarData: TEdit
  129.         Left = 240
  130.         Top = 64
  131.         Width = 73
  132.         Height = 21
  133.         AutoSize = False
  134.         TabOrder = 2
  135.         Text = '0'
  136.       end
  137.       object BTN_Set: TButton
  138.         Left = 240
  139.         Top = 96
  140.         Width = 75
  141.         Height = 25
  142.         Caption = 'SET'
  143.         TabOrder = 3
  144.         OnClick = BTN_SetClick
  145.       end
  146.       object BTN_Delete: TButton
  147.         Left = 240
  148.         Top = 128
  149.         Width = 75
  150.         Height = 25
  151.         Caption = 'DELETE'
  152.         TabOrder = 4
  153.         OnClick = BTN_DeleteClick
  154.       end
  155.       object BTN_Clear: TButton
  156.         Left = 240
  157.         Top = 160
  158.         Width = 75
  159.         Height = 25
  160.         Caption = 'CLEAR'
  161.         TabOrder = 5
  162.         OnClick = BTN_ClearClick
  163.       end
  164.     end
  165.   end
  166. end
  167.